* {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
}

.contact {
    padding-top: 50px;
    display: flex;
    justify-content: space-around;
}

.con-img img {
    width: 100%;
}

.contact-input {
    margin-top: 100px;
}

.contact-input i {
    color: #620f0f;
    font-size: 15px;
}

.contact input {
    margin-left: 10px;
    color: #620f0f;
    height: 20px;
    width: 300px;
    background-color: transparent;
    padding-top: 10px;
    border: none;
    border-bottom: 2px solid black;
    font-size: 15px;
}

.contact-input button {
    margin-top: 30px;
    font-size: 18px;
    color: #fff;
    background-color: #620f0f;
    border: none;
    padding: 10px;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.5s ease-in-out;
}

.contact-input .con-butt {
    text-align: center;
}

.contact-input button:hover {
    background-color: #ea0000;
    padding: 12px;
}


/* contact-two */

.contact-two {
    display: flex;
    justify-content: space-evenly;
}

.address h2 {
    color: #ea0000;
}

.address h3 {
    color: #620f0f;
    margin-top: 5px;
}

.map {
    text-align: center;
    margin-top: 50px;
}

.map iframe {
    width: 90%;
}


@media (max-width: 425px) {
    .contact-input {
        margin-top: 0px;
    }

    .contact {
        flex-direction: column;
        align-items: center;
    }

    .contact-two {
        flex-direction: column;
        align-items: center;
    }

}